home *** CD-ROM | disk | FTP | other *** search
- #include "Shell.ArrayLabel.h"
- #include "Shell.Array.h"
- #include "Shell.FontLabel.h"
- #include "Shell.Vector.h"
-
-
- #define LABEL_YPOS Shell_TEXTYSIZE
-
-
- Shell_rectblock *Shell_Add2DDoubleArrayLabel(
- Shell_windblock *w, int x, int y, int xsize, int ysize,
- int forecol, int backcol, double **data, char *text
- )
- {
- Shell_FontLabel( w, x, y + LABEL_YPOS, forecol, backcol, text);
- return Shell_Add2DDoubleArray( w, x, y, xsize, ysize, forecol, backcol, data);
- }
-
-
-
- Shell_rectblock *Shell_AddDoubleVerticalVectorLabel(
- Shell_windblock *wind,
- int x,
- int y,
- int size,
- int forecol,
- int backcol,
- double *data,
- char *text
- )
- {
- Shell_FontLabel( wind, x, y + LABEL_YPOS, forecol, backcol, text);
- return Shell_AddDoubleVerticalVector( wind, x, y, size, forecol, backcol, data);
- }
-
-